repo.or.cz
/
EroBeats.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
rm update
[EroBeats.git]
/
Djinn and Tonic - Erobeats
/
SFX.h
blob
52e2d04ff203fe29c4aa9c2df94be78ae3cba2e8
1
#pragma once
2
3
#include <SDL/SDL.h>
4
#include <SDL Mixer\SDL_mixer.h>
5
6
#include<string>
7
#include <sstream>
8
#include <iostream>
9
#include <fstream>
10
#include<vector>
11
#include<array>
12
13
14
#include
"unzip.h"
15
16
class
SFX
17
{
18
public
:
19
SFX
();
20
~
SFX
();
21
22
std
::
vector
<
Mix_Chunk
*>*
gameSFX
;
23
24
void
playSFX
(
int
track
);
25
void
setVolume
(
int
vol
);
26
bool
isFinished
(
int
channel
);
27
};